/* This procedure returns all of the member types that will be available for the user to select from.
NOTE:
You MUST return at least 1 record with the columns MEMBER_TYPE and DESCRIPTION. */ CREATEPROCEDURE[dbo].[BAEBillingMemberTypes] @UserIDasvarchar(10) AS SELECTMEMBER_TYPE,DESCRIPTIONFROMMember_Types;